public class GxClientAddRangeChartModel
The model is used to compose a range chart model in order to be applied on the client.
Modifier and Type | Field and Description |
---|---|
BBjNumber | Aggregate! When set to true, series values will be summed for each category before charting. |
GxClientAddRangeSelectionModel | RangeSelection! Defines the range of cells to be charted. A range is normally defined with start and end rows and a list of columns, If the start and end rows are omitted, the range covers all rows (ie entire columns are selected). |
BBjNumber | SuppressChartRanges! Normally when a chart is displayed using the grid, the grid will highlight the range the chart is charting when the chart gets focus, to suppress this behaviour, set the field to false |
BBjString | Type! The type of chart to create |
Modifier and Type | Method and Description |
---|---|
JsonObject | getAsJsonObject() Convert the model to JSON object |
static BBjString | TYPE_AREA() Constant value to define area chart |
static BBjString | TYPE_DOUGHNUT() Constant value to define doughnut chart |
static BBjString | TYPE_GROUPEDBAR() Constant value to define groupedBar chart |
static BBjString | TYPE_GROUPEDCOLUMN() Constant value to define groupedColumn chart |
static BBjString | TYPE_LINE() Constant value to define line chart |
static BBjString | TYPE_NORMALIZEDAREA() Constant value to define normalizedArea chart |
static BBjString | TYPE_NORMALIZEDBAR() Constant value to define normalizedBar chart |
static BBjString | TYPE_NORMALIZEDCOLUMN() Constant value to define normalizedColumn chart |
static BBjString | TYPE_PIE() Constant value to define pie chart |
static BBjString | TYPE_STACKEDAREA() Constant value to define stackedArea chart |
static BBjString | TYPE_STACKEDBAR() Constant value to define stackedBar chart |
static BBjString | TYPE_STACKEDCOLUMN() Constant value to define stackedColumn chart |
public BBjNumber Aggregate!
When set to true, series values will be summed for each category before charting.
public GxClientAddRangeSelectionModel RangeSelection!
Defines the range of cells to be charted. A range is normally defined with start and end rows and a list of columns, If the start and end rows are omitted, the range covers all rows (ie entire columns are selected).
public BBjNumber SuppressChartRanges!
Normally when a chart is displayed using the grid, the grid will highlight the range the chart is charting when the chart gets focus, to suppress this behaviour, set the field to false
public BBjString Type!
The type of chart to create
public JsonObject getAsJsonObject()
Convert the model to JSON object
public static BBjString TYPE_AREA()
Constant value to define area chart
public static BBjString TYPE_DOUGHNUT()
Constant value to define doughnut chart
public static BBjString TYPE_GROUPEDBAR()
Constant value to define groupedBar chart
public static BBjString TYPE_GROUPEDCOLUMN()
Constant value to define groupedColumn chart
public static BBjString TYPE_LINE()
Constant value to define line chart
public static BBjString TYPE_NORMALIZEDAREA()
Constant value to define normalizedArea chart
public static BBjString TYPE_NORMALIZEDBAR()
Constant value to define normalizedBar chart
public static BBjString TYPE_NORMALIZEDCOLUMN()
Constant value to define normalizedColumn chart
public static BBjString TYPE_PIE()
Constant value to define pie chart
public static BBjString TYPE_STACKEDAREA()
Constant value to define stackedArea chart
public static BBjString TYPE_STACKEDBAR()
Constant value to define stackedBar chart
public static BBjString TYPE_STACKEDCOLUMN()
Constant value to define stackedColumn chart